From: Richard M. Stallman Date: Fri, 19 Sep 2003 14:36:22 +0000 (+0000) Subject: Don't include lisp.h. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~25515 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=adb85a57f4b045e59c12c360ad1fec38b0c99471;p=emacs.git Don't include lisp.h. (P_): Define it here (as well as elsewhere). --- diff --git a/src/atimer.h b/src/atimer.h index f7074f383db..3ecc97e5511 100644 --- a/src/atimer.h +++ b/src/atimer.h @@ -21,9 +21,13 @@ Boston, MA 02111-1307, USA. */ #ifndef EMACS_ATIMER_H #define EMACS_ATIMER_H -/* Building alloca.o includes us, and we need lisp.h for the P_ macro - in that case. */ -#include "lisp.h" +/* Declare the prototype for a general external function. */ +#if defined (PROTOTYPES) || defined (WINDOWSNT) +#define P_(proto) proto +#else +#define P_(proto) () +#endif + #include "systime.h" /* for EMACS_TIME */ /* Forward declaration. */